home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gallery_injection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID and CVE
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10. # This check covers CVE-2001-1234, but a similar flaw (with a different
  11. # CVE) was found later on.
  12. #
  13. # Ref: http://gallery.menalto.com/modules.php?op=modload&name=News&file=article&sid=50
  14.  
  15.  
  16. if(description)
  17. {
  18.  script_id(11115);
  19.  script_bugtraq_id(3397);
  20.  script_version ("$Revision: 1.11 $");
  21.  script_cve_id("CVE-2001-1234");
  22.  name["english"] = "gallery code injection";
  23.  
  24.  script_name(english:name["english"]);
  25.  
  26.  desc["english"] = "
  27. It is possible to make the remote host include php files hosted
  28. on a third party server using Gallery.
  29.  
  30. An attacker may use this flaw to inject arbitrary code in the remote
  31. host and gain a shell with the privileges of the web server.
  32.  
  33. Reference : http://online.securityfocus.com/bid/3397
  34.  
  35. Solution : Upgrade to Gallery 1.3.1 or newer
  36. Risk factor : High";
  37.  
  38.  
  39.  
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Checks for the presence of includes/needinit.php";
  44.  
  45.  script_summary(english:summary["english"]);
  46.  
  47.  script_category(ACT_ATTACK);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  52.  family["english"] = "CGI abuses";
  53.  family["francais"] = "Abus de CGI";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  script_dependencie("find_service.nes", "http_version.nasl");
  56.  script_require_ports("Services/www", 80);
  57.  exit(0);
  58. }
  59.  
  60. #
  61. # The script code starts here
  62. #
  63.  
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66.  
  67. port = get_http_port(default:80);
  68.  
  69.  
  70. if( ! get_port_state(port))exit(0);
  71. if( ! can_host_php(port:port) ) exit(0);
  72. if(http_is_dead(port:port))exit(0);
  73.  
  74. function check(url)
  75. {
  76. req = http_get(item:string(url, "/errors/needinit.php?GALLERY_BASEDIR=http://xxxxxxxx/"),
  77.          port:port);
  78. r = http_keepalive_send_recv(port:port, data:req);
  79. if ( r == NULL ) exit(0);
  80.  if("http://xxxxxxxx/errors/configure_instructions" >< r)
  81.      {
  82.      security_hole(port);
  83.     exit(0);
  84.     }
  85.  
  86. }
  87.  
  88. check(url:"");
  89. foreach dir (cgi_dirs())
  90. {
  91.  check(url:dir);
  92. }
  93.